home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DTP
/
DTP_TEX
/
3239.ZIP
/
DVIMTP.ZIP
/
CLRROW.H
< prev
next >
Wrap
Text File
|
1986-04-28
|
511b
|
17 lines
/* -*-C-*- clrrow.h */
/*-->clrrow*/
/**********************************************************************/
/****************************** clrrow ********************************/
/**********************************************************************/
void
clrrow() /* clear the current character image row, img_row[] */
{
register UNSIGN32 *p;
register UNSIGN16 nwords;
nwords = img_words;
for (p = &img_row[nwords-1]; nwords; (--p,--nwords))
*p = (UNSIGN32)0L;
}